home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / H001C.ZIP / DJGPP3.ZIP / INCLUDE / STDIO.H < prev    next >
C/C++ Source or Header  |  1991-03-24  |  8KB  |  314 lines

  1. /* This is file stdio.h */
  2. /* This file may have been modified by DJ Delorie (Jan 1991).  If so,
  3. ** these modifications are Coyright (C) 1991 DJ Delorie, 24 Kirsten Ave,
  4. ** Rochester NH, 03867-2954, USA.
  5. */
  6.  
  7. /* This may look like C code, but it is really -*- C++ -*- */
  8. /* 
  9. Copyright (C) 1988 Free Software Foundation
  10.     written by Doug Lea (dl@rocky.oswego.edu)
  11.  
  12. This file is part of GNU CC.
  13.  
  14. GNU CC is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY.  No author or distributor
  16. accepts responsibility to anyone for the consequences of using it
  17. or for whether it serves any particular purpose or works at all,
  18. unless he says so in writing.  Refer to the GNU CC General Public
  19. License for full details.
  20.  
  21. Everyone is granted permission to copy, modify and redistribute
  22. GNU CC, but only under the conditions described in the
  23. GNU CC General Public License.   A copy of this license is
  24. supposed to have been given to you along with GNU CC so you
  25. can know your rights and responsibilities.  It should be in a
  26. file named COPYING.  Among other things, the copyright notice
  27. and this notice must be preserved on all copies.  
  28. */
  29.  
  30. /*
  31.  *  Please check the following before installing this file:
  32.  *
  33.  *  Make sure USG is #defined if you are on a USG system!
  34.  *
  35.  *  Check the value of _NFILE against the one in your /usr/include/stdio.h.
  36.  *  (USG only)
  37.  *
  38.  *  Check whether your libc.a sprintf function returns
  39.  *  an int (as do most) versus a char* (BSD), and (un)comment
  40.  *  the corresponding SPRINTF_RETURNS_INT line.
  41.  *
  42.  *  Check the value of BUFSIZ against the one in your /usr/include/stdio.h.
  43.  *
  44.  *  Carefully check the fields and order of _iobuf declaration against
  45.  *  the one in your /usr/include/stdio.h. Xenix-based systems
  46.  *  may need some re-ordering of _iobuf. fields.
  47.  *
  48.  *  Note that some _IOXXX #defines may not be present in your 
  49.  *  /usr/include/stdio.h. This is ok, so long as the ones that
  50.  *  are present in both are set to the same values.
  51.  *
  52.  *  Some of the prototypes refer to functions that may not be
  53.  *  present in your libc.a. This is ok so long as you do not
  54.  *  actually call such functions.
  55.  *
  56.  */
  57.  
  58. #ifndef FILE
  59. #pragma once
  60.  
  61.  
  62. /*
  63.    HAVE_VPRINTF should be set if vprintf is in libc.a
  64.    HAVE_SETVBUF should be set if setvbuf is in libc.a
  65.    HAVE_SETLINEBUF should be set if setlinebuf in libc.a
  66.  
  67.    The following are probably correct for the listed systems
  68.  
  69. */
  70.  
  71. #ifdef SYSTEM_FIVE
  72. #define USG
  73. #endif
  74.  
  75. #if defined(USG)
  76. #define  HAVE_VPRINTF
  77. #define  HAVE_SETVBUF  
  78. /* #define  HAVE_SETLINEBUF */
  79.  
  80. #elif defined(vax) || defined(sony)
  81. /* #define HAVE_VPRINTF */
  82. /* #define  HAVE_SETVBUF  */
  83. #define HAVE_SETLINEBUF
  84.  
  85. #elif defined(sun)
  86. #define  HAVE_VPRINTF
  87. #define  HAVE_SETVBUF  
  88. #define  HAVE_SETLINEBUF
  89.  
  90. #elif defined(sequent)
  91. /* #define  HAVE_VPRINTF */
  92. /* #define  HAVE_SETVBUF */
  93. #define  HAVE_SETLINEBUF
  94.  
  95. #elif defined(DGUX)
  96. #define HAVE_VPRINTF
  97. #define HAVE_SETVBUF
  98. #define HAVE_SETLINEBUF
  99. #define IOBUF_FLAG_TYPE    int
  100. #define IOBUF_FILE_TYPE    int
  101. #define _NFILE 64
  102. #define IOBUF_EXTRA_FIELDS    int _reserve[27];
  103. #define SPRINTF_RETURNS_INT
  104. #define BUFEND_ENTRY_TYPE unsigned char *
  105. #define USG
  106.  
  107. #elif defined(TEKTRONIX_SYSV) || defined(hp9000s300) || defined(i386)
  108. #define  HAVE_VPRINTF
  109. #define  HAVE_SETVBUF
  110. #define HAVE_SETLINEBUF
  111. #define  USG
  112. #undef USG /*DJ*/
  113.  
  114. #elif defined(convex)
  115. /* #define HAVE_VPRINTF */
  116. /* #define HAVE_SETVBUF */
  117. #define HAVE_SETLINEBUF
  118. #define IOBUF_FILE_TYPE unsigned char
  119. #define HAVE_VOID_DOPRNT
  120.  
  121. #endif
  122.  
  123. #ifdef hpux
  124. #define IOBUF_FLAG_TYPE char
  125. #endif
  126.  
  127. #ifdef USG
  128. #define IOBUF_BUFSIZ_FIELD    /* System V ain't got one */
  129. #endif
  130.  
  131. /* Some default definitions for things not defined machine-specifically
  132.    above.  */
  133.  
  134. #ifndef IOBUF_BUFSIZ_FIELD
  135. #define IOBUF_BUFSIZ_FIELD int _bufsiz;
  136. #endif
  137.  
  138. #ifndef IOBUF_FLAG_TYPE
  139. #define IOBUF_FLAG_TYPE short
  140. #endif
  141.  
  142. #ifndef IOBUF_FILE_TYPE
  143. #define IOBUF_FILE_TYPE char
  144. #endif
  145.  
  146. #ifndef IOBUF_EXTRA_FIELDS
  147. #define IOBUF_EXTRA_FIELDS
  148. #endif
  149.  
  150. #if defined(USG) && !defined(_NFILE)
  151. #define _NFILE 20
  152. #endif
  153.  
  154. #ifdef USG
  155. #define _bufend(p) _bufendtab[(p)->_file]
  156. #define _bufsiz(p) (_bufend(p) - (p)->_base)
  157. #ifndef BUFEND_ENTRY_TYPE
  158. #define BUFEND_ENTRY_TYPE char *
  159. #endif
  160. #ifdef __cplusplus
  161. extern "C" {
  162. #endif
  163. BUFEND_ENTRY_TYPE _bufendtab[];
  164. #ifdef __cplusplus
  165. }
  166. #endif
  167. #endif
  168.  
  169. /* check this -- hardly any systems need this these days */
  170. #define SPRINTF_RETURNS_INT
  171.  
  172. /* check and possibly redefine the following */
  173. #define BUFSIZ  1024            
  174.  
  175. extern  struct  _iobuf {
  176.     int      _cnt;
  177.     char*    _ptr;
  178.     char*    _base;
  179.     IOBUF_BUFSIZ_FIELD
  180.     IOBUF_FLAG_TYPE    _flag;
  181.     IOBUF_FILE_TYPE    _file;
  182.     IOBUF_EXTRA_FIELDS
  183. } _iob[];
  184.  
  185. typedef struct _iobuf FILE;
  186.  
  187. #define _IOFBF    00000
  188. #define _IOREAD   00001
  189. #define _IOWRT    00002
  190. #define _IONBF    00004
  191. #define _IOMYBUF  00010
  192. #define _IOEOF    00020
  193. #define _IOERR    00040
  194. #if defined(USG) && !defined(hpux)
  195. #define _IOSTRG   00000  /* faked out for USG */
  196. #define _IOLBF    00100
  197. #define _IORW     00200
  198. #define _IOAPPEND 00000 /* faked out for USG */
  199. #elif defined(hpux)
  200. #define _IOSTRG   00000  /* faked out for USG */
  201. #define _IOLBF    00200
  202. #define _IORW     00400
  203. #define _IOAPPEND 00000 /* faked out for USG */
  204. #else
  205. #define _IOSTRG   00100
  206. #define _IOLBF    00200
  207. #define _IORW     00400
  208. #define _IOAPPEND 01000
  209. #endif
  210. #ifdef DGUX
  211. #define _IOPBF    00400  /* Boolean - ungetc() not called since fill/flush */
  212. #endif
  213. #define _IOTEXT   02000  /* for MSDOS cr/lf style files */
  214.  
  215. #define EOF       (-1)
  216.  
  217. #ifndef NULL
  218. #define NULL      0
  219. #endif
  220.  
  221. #define stdin     (&_iob[0])
  222. #define stdout    (&_iob[1])
  223. #define stderr    (&_iob[2])
  224.  
  225. #define getc(p) (--(p)->_cnt>=0 ? \
  226.   (int)(*(unsigned char*)(p)->_ptr++) : \
  227.   _filbuf(p))
  228. #define putc(x,p) (--(p)->_cnt>=0? \
  229.   ((int)((unsigned char)((*(p)->_ptr++=(unsigned)(x))))): \
  230.   _flsbuf((unsigned)(x),p))
  231.  
  232. #define clearerr(p) ((p)->_flag &= ~(_IOERR|_IOEOF))
  233. #define getchar()   getc(stdin)
  234. #define putchar(x)  putc(x,stdout)
  235. #define feof(p)     (((p)->_flag&_IOEOF)!=0)
  236. #define ferror(p)   (((p)->_flag&_IOERR)!=0)
  237. #define fileno(p)   ((p)->_file)
  238.  
  239. #include <varargs.h>
  240.  
  241. #ifdef __cplusplus
  242. extern "C" {
  243. #endif
  244.  
  245. int    _doprnt(const char*, va_list, FILE*);
  246. int    _doscan(FILE*, const char*, void **argp);
  247. int    _filbuf(FILE*);
  248. int    _flsbuf(unsigned, FILE*);
  249. int    fclose(FILE*);
  250. FILE*  fdopen(int, const char*);
  251. int    fflush(FILE*);
  252. int    fgetc(FILE*);
  253. char*  fgets(char*, int, FILE *);
  254. FILE*  fopen(const char*, const char*);
  255. int    fprintf(FILE*, const char*, ...);
  256. int    fputc(int, FILE*);
  257. int    fputs(const char*, FILE*);
  258. int    fread(void*, int, int, FILE*);
  259. FILE*  freopen(const char*, const char*, FILE*);
  260. int    fscanf(FILE*, const char*, ...);
  261. int    fseek(FILE*, long, int);
  262. long   ftell(FILE *);
  263. int    fwrite(const void*, int, int, FILE*);
  264. char*  gets(char*);
  265. int    getw(FILE*);
  266. int    pclose(FILE*);
  267. FILE*  popen(const char*, const char*);
  268. int    printf(const char*, ...);
  269. int    puts(const char*);
  270. int    putw(int, FILE*);
  271. int    rewind(FILE*);
  272. int    scanf(const char*, ...);
  273. int    setbuf(FILE*, char*);
  274. int    setbuffer(FILE*, char*, int);
  275. int    setlinebuf(FILE*);
  276. int    setvbuf(FILE*, char*, int, int);
  277. int    sscanf(char*, const char*, ...);
  278. FILE*  tmpfile();
  279. int    ungetc(int, FILE*);
  280. int    vfprintf(FILE*, const char*, ...);
  281.  
  282. /* Third arg to vprintf must be '...' for some machines, & does not */
  283. /* hurt for others. */
  284.  
  285. int    vprintf(const char*, ... );
  286.  
  287. #ifdef SPRINTF_RETURNS_INT
  288. int    sprintf(char*, const char*, ...);
  289. int    vsprintf(char*, const char*, ...);
  290. #else
  291. char*  sprintf(char*, const char*, ...);
  292. char*  vsprintf(char*, const char*, ...);
  293. #endif
  294.  
  295. #ifdef __cplusplus
  296. }
  297. #endif
  298.  
  299. #ifndef L_ctermid
  300. #define L_ctermid    9 
  301. #endif
  302. #ifndef L_cuserid
  303. #define L_cuserid    9
  304. #endif
  305. #ifndef P_tmpdir
  306. #define    P_tmpdir    "/tmp/"
  307. #endif
  308. #ifndef L_tmpnam
  309. #define    L_tmpnam    (sizeof(P_tmpdir) + 15)
  310. #endif
  311.  
  312.  
  313. #endif /* FILE */
  314.